home *** CD-ROM | disk | FTP | other *** search
- #
- # DOS/Linux Boot Disks
- #
- bootdisk_menu:
- set textColor = color[white on black]
- clear
- set textColor = color[yellow on blue]
- print " ULTIMATE BOOT CD VER 3.2 "
- print " http://www.ultimatebootcd.com/ "
- print " "
- set textColor = color[white on red]
- print " [DOS/Linux Boot Disks] "
- set textColor = color[white on cyan]
- print " "
- set textColor = color[yellow on cyan]
- print " DOS Boot Disks "
- set textColor = color[white on cyan]
- print " [F1] FreeDOS Boot Disk V3.22 [F3] NwDsk: NetWare Boot Disk V3.22 "
- print " [F2] Madboot Floppy V8.0 [F4] MSRRC: Bart's N/W Disk Clone V3.22 "
- print " "
- set textColor = color[yellow on cyan]
- print " Linux Boot Disks "
- set textColor = color[white on cyan]
- print " [F5] Tom's Boot Disk V2.0.103 [F7] Recovery Is Possible (RIP) V3.1 "
- print " [F6] BasicLinux V3.2 [F8] Trinux V0.89 "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- print " "
- set textColor = color[white on blue]
- print " Please select an item (ESC to return to previous menu) "
- set textColor = color[white on black]
-
- #
- # Actions
- #
- getkey 500 script boothdd0.scn
- clear
- if ($lastKey == key[f1]); then bcdw \images\freedos.img
- if ($lastKey == key[f2]); then memdisk \images\madboot.igz
- if ($lastKey == key[f3]); then memdisk \images\nwdsk.igz
- if ($lastKey == key[f4]); then memdisk \images\fdmsrrc.igz
- if ($lastKey == key[f5]); then memdisk \images\tomsrtbt.igz
- if ($lastKey == key[f6]); then memdisk \images\basiclin.igz
- if ($lastKey == key[f7]); then memdisk \images\rip.igz
- if ($lastKey == key[f8]); then memdisk \images\trinux.igz
- if ($lastKey == key[esc]); then script main.scn
- goto bootdisk_menu
-
-